cursor position - translation to English
Diclib.com
ChatGPT AI Dictionary
Enter a word or phrase in any language 👆
Language:

Translation and analysis of words by ChatGPT artificial intelligence

On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:

  • how the word is used
  • frequency of use
  • it is used more often in oral or written speech
  • word translation options
  • usage examples (several phrases with translation)
  • etymology

cursor position - translation to English

DATABASE CURSOR
Database cursor; SQL Cursor; Cursor (database)

cursor position      
Posición del cursor, El lugar en el que está el cursor en la pantalla
cursor         
1978-1982 DISK MAGAZINE
Cursor (magazine)
(n.) = cursor
Ex: A data entry and validation package typically allows the user to define a form to be displayed on a VDU, and by using a cursor, or other prompts, enables data to be entered in this format.
----
* cursor-control device = dispositivo de control del movimiento del cursor
* cursor-control key = tecla de desplazamiento del cursor
* screen cursor = cursor
Net Position         
AMOUNT OF ONE'S HOLDINGS OF A PARTICULAR FINANCIAL ASSET
Securities position; Position (Finance); Net position
Posición neta
La diferencia entre el total de posiciones abiertas largas y total de posiciones abiertas cortas en cualquiera o todos los contratos mensuales de futuros combinados mantenidos por un individuo.

Definition

pole position
pole position (ingl.; pronunc. [pól posísion]) f. En una carrera automovilística, posición más ventajosa en la línea de salida conseguida por un corredor al haber hecho el mejor tiempo en los entrenamientos.

Wikipedia

Cursor (databases)

In computer science, a database cursor is a mechanism that enables traversal over the records in a database. Cursors facilitate subsequent processing in conjunction with the traversal, such as retrieval, addition and removal of database records. The database cursor characteristic of traversal makes cursors akin to the programming language concept of iterator.

Cursors are used by database programmers to process individual rows returned by database system queries. Cursors enable manipulation of whole result sets at once. In this scenario, a cursor enables the sequential processing of rows in a result set.

In SQL procedures, a cursor makes it possible to define a result set (a set of data rows) and perform complex logic on a row by row basis. By using the same mechanics, a SQL procedure can also define a result set and return it directly to the caller of the SQL procedure or to a client application.

A cursor can be viewed as a pointer to one row in a set of rows. The cursor can only reference one row at a time, but can move to other rows of the result set as needed.